home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 April: Mac OS SDK / Dev.CD Apr 00 SDK1.toast / Development Kits / Mac OS / Apple Guide / Engineering / Context Check Modules / Standard CC Modules / File Context / File.h < prev    next >
Encoding:
Text File  |  1993-11-29  |  1.1 KB  |  41 lines  |  [TEXT/MPS ]

  1. //    Copyright:    © 1993 Apple Computer, Inc. All rights reserved.
  2. //    Author:        Victor J. Hnyp
  3. //    Date:            08-Feb-93
  4.  
  5. // Revisions
  6. //
  7. //    02/08/93    VJH    2.04    Fixed:    isControlPanel, isFileExists
  8. //
  9. //    01/14/93    VJH    2.03                General RENO build update
  10. //
  11. //    12/21/92    VJH    2.02    Fixed:    Typecast of PBGetCatInfo((CInfoPBPtr)&thePB) for stricter compile checking
  12. //
  13. //    11/29/92    VJH    2.01    Added:    Is the frontmost (active) window the same name as the startup volume name?
  14. //                                    Is the name of any open and visible window the same name as the startup volume name?
  15. //                                    Is the current directory the startup disk's?
  16. //                                    Is PrintMonitor installed?
  17. //                                    Is AppleShare support software installed?
  18. //                                    Is EtherTalk support software installed?
  19. //                                    Is TokenTalk support software installed?
  20. //                                    Is the Control Panel named "..." installed?
  21. //                                    Is the shared folder whose path is "..." owned by the user?
  22. //
  23.  
  24. //#ifndef __FILE__
  25. //#define __FILE__
  26.  
  27. #ifndef __UTILITY__
  28. #include "Utility.h"
  29. #endif
  30.  
  31.  
  32. typedef struct
  33. {
  34.     long                fileSelector;                    // File Selector
  35.     long                sysFolderCode;
  36.     StringSpec        fileName;
  37. } FileState, *FileStatePtr;
  38.  
  39.  
  40. //#endif
  41.